home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue5 / PD / DIRSYNC / LegalStuff / ccres / c / _FontDbox < prev    next >
Text File  |  2004-03-20  |  3KB  |  58 lines

  1. /* _FontDBox.c
  2.    $Id: _FontDbox.c,v 1.2 2004/03/20 22:13:35 joty Exp $
  3.  
  4.    Copyright (c) 2003-2004 Dave Appleby / John Tytgat
  5.  
  6.    This file is part of CCres.
  7.  
  8.    CCres is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2 of the License, or
  11.    (at your option) any later version.
  12.  
  13.    CCres is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with CCres; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22.  
  23. #include "ccres.h"
  24.  
  25. #include <stdio.h>
  26. #include <string.h>
  27.  
  28. #include <OSLib/fontdbox.h>
  29.  
  30. static FLAGS FontDboxFlags[] = {
  31.     {fontdbox_GENERATE_ABOUT_TO_BE_SHOWN , "fontdbox_GENERATE_ABOUT_TO_BE_SHOWN" },
  32.     {fontdbox_GENERATE_DIALOGUE_COMPLETED, "fontdbox_GENERATE_DIALOGUE_COMPLETED"}
  33. };
  34.  
  35. static OBJECTLIST FontDboxObjectList[] = {
  36.     {iol_FLAGS,  "fontdbox_flags:",          offsetof(fontdbox_object, flags),                   FontDboxFlags,  ELEMENTS(FontDboxFlags)               },
  37.     {iol_MSG,    "title:",                   offsetof(fontdbox_object, title),                   "title_limit:", offsetof(fontdbox_object, title_limit)},
  38.     {iol_STRING, "initial_font:",            offsetof(fontdbox_object, initial.font),            NULL,           0                                     },
  39.     {iol_INT,    "initial_height:",          offsetof(fontdbox_object, initial.height),          NULL,           0                                     },
  40.     {iol_INT,    "initial_aspect:",          offsetof(fontdbox_object, initial.aspect),          NULL,           0                                     },
  41.     {iol_MSG,    "try_string:",              offsetof(fontdbox_object, try_string),              NULL,           0                                     },
  42.     {iol_STRING, "alternative_window_name:", offsetof(fontdbox_object, alternative_window_name), NULL,           0                                     }
  43. };
  44.  
  45.  
  46. int _fontdbox(PDATA data, PSTR pszIn, toolbox_relocatable_object_base * object)
  47. {
  48.     put_objects(data, pszIn, 0, (PSTR) (object + 1), FontDboxObjectList, ELEMENTS(FontDboxObjectList));
  49.  
  50.     return(sizeof(fontdbox_object));
  51. }
  52.  
  53.  
  54. void fontdbox(FILE * hf, toolbox_resource_file_object_base * object, PSTR pszStringTable, PSTR pszMessageTable)
  55. {
  56.     get_objects(hf, pszStringTable, pszMessageTable, (PSTR) (object + 1), FontDboxObjectList, ELEMENTS(FontDboxObjectList), 1);
  57. }
  58.